home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / codecs.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  25KB  |  771 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. ''' codecs -- Python Codec Registry, API and helpers.
  5.  
  6.  
  7. Written by Marc-Andre Lemburg (mal@lemburg.com).
  8.  
  9. (c) Copyright CNRI, All Rights Reserved. NO WARRANTY.
  10.  
  11. '''
  12. import __builtin__
  13. import sys
  14.  
  15. try:
  16.     from _codecs import *
  17. except ImportError:
  18.     why = None
  19.     raise SystemError, 'Failed to load the builtin codecs: %s' % why
  20.  
  21. __all__ = [
  22.     'register',
  23.     'lookup',
  24.     'open',
  25.     'EncodedFile',
  26.     'BOM',
  27.     'BOM_BE',
  28.     'BOM_LE',
  29.     'BOM32_BE',
  30.     'BOM32_LE',
  31.     'BOM64_BE',
  32.     'BOM64_LE',
  33.     'BOM_UTF8',
  34.     'BOM_UTF16',
  35.     'BOM_UTF16_LE',
  36.     'BOM_UTF16_BE',
  37.     'BOM_UTF32',
  38.     'BOM_UTF32_LE',
  39.     'BOM_UTF32_BE',
  40.     'strict_errors',
  41.     'ignore_errors',
  42.     'replace_errors',
  43.     'xmlcharrefreplace_errors',
  44.     'register_error',
  45.     'lookup_error']
  46. BOM_UTF8 = '\xef\xbb\xbf'
  47. BOM_LE = BOM_UTF16_LE = '\xff\xfe'
  48. BOM_BE = BOM_UTF16_BE = '\xfe\xff'
  49. BOM_UTF32_LE = '\xff\xfe\x00\x00'
  50. BOM_UTF32_BE = '\x00\x00\xfe\xff'
  51. if sys.byteorder == 'little':
  52.     BOM = BOM_UTF16 = BOM_UTF16_LE
  53.     BOM_UTF32 = BOM_UTF32_LE
  54. else:
  55.     BOM = BOM_UTF16 = BOM_UTF16_BE
  56.     BOM_UTF32 = BOM_UTF32_BE
  57. BOM32_LE = BOM_UTF16_LE
  58. BOM32_BE = BOM_UTF16_BE
  59. BOM64_LE = BOM_UTF32_LE
  60. BOM64_BE = BOM_UTF32_BE
  61.  
  62. class Codec:
  63.     """ Defines the interface for stateless encoders/decoders.
  64.  
  65.         The .encode()/.decode() methods may use different error
  66.         handling schemes by providing the errors argument. These
  67.         string values are predefined:
  68.  
  69.          'strict' - raise a ValueError error (or a subclass)
  70.          'ignore' - ignore the character and continue with the next
  71.          'replace' - replace with a suitable replacement character;
  72.                     Python will use the official U+FFFD REPLACEMENT
  73.                     CHARACTER for the builtin Unicode codecs on
  74.                     decoding and '?' on encoding.
  75.          'xmlcharrefreplace' - Replace with the appropriate XML
  76.                                character reference (only for encoding).
  77.          'backslashreplace'  - Replace with backslashed escape sequences
  78.                                (only for encoding).
  79.  
  80.         The set of allowed values can be extended via register_error.
  81.  
  82.     """
  83.     
  84.     def encode(self, input, errors = 'strict'):
  85.         """ Encodes the object input and returns a tuple (output
  86.             object, length consumed).
  87.  
  88.             errors defines the error handling to apply. It defaults to
  89.             'strict' handling.
  90.  
  91.             The method may not store state in the Codec instance. Use
  92.             StreamCodec for codecs which have to keep state in order to
  93.             make encoding/decoding efficient.
  94.  
  95.             The encoder must be able to handle zero length input and
  96.             return an empty object of the output object type in this
  97.             situation.
  98.  
  99.         """
  100.         raise NotImplementedError
  101.  
  102.     
  103.     def decode(self, input, errors = 'strict'):
  104.         """ Decodes the object input and returns a tuple (output
  105.             object, length consumed).
  106.  
  107.             input must be an object which provides the bf_getreadbuf
  108.             buffer slot. Python strings, buffer objects and memory
  109.             mapped files are examples of objects providing this slot.
  110.  
  111.             errors defines the error handling to apply. It defaults to
  112.             'strict' handling.
  113.  
  114.             The method may not store state in the Codec instance. Use
  115.             StreamCodec for codecs which have to keep state in order to
  116.             make encoding/decoding efficient.
  117.  
  118.             The decoder must be able to handle zero length input and
  119.             return an empty object of the output object type in this
  120.             situation.
  121.  
  122.         """
  123.         raise NotImplementedError
  124.  
  125.  
  126.  
  127. class StreamWriter(Codec):
  128.     
  129.     def __init__(self, stream, errors = 'strict'):
  130.         """ Creates a StreamWriter instance.
  131.  
  132.             stream must be a file-like object open for writing
  133.             (binary) data.
  134.  
  135.             The StreamWriter may use different error handling
  136.             schemes by providing the errors keyword argument. These
  137.             parameters are predefined:
  138.  
  139.              'strict' - raise a ValueError (or a subclass)
  140.              'ignore' - ignore the character and continue with the next
  141.              'replace'- replace with a suitable replacement character
  142.              'xmlcharrefreplace' - Replace with the appropriate XML
  143.                                    character reference.
  144.              'backslashreplace'  - Replace with backslashed escape
  145.                                    sequences (only for encoding).
  146.  
  147.             The set of allowed parameter values can be extended via
  148.             register_error.
  149.         """
  150.         self.stream = stream
  151.         self.errors = errors
  152.  
  153.     
  154.     def write(self, object):
  155.         """ Writes the object's contents encoded to self.stream.
  156.         """
  157.         (data, consumed) = self.encode(object, self.errors)
  158.         self.stream.write(data)
  159.  
  160.     
  161.     def writelines(self, list):
  162.         ''' Writes the concatenated list of strings to the stream
  163.             using .write().
  164.         '''
  165.         self.write(''.join(list))
  166.  
  167.     
  168.     def reset(self):
  169.         ''' Flushes and resets the codec buffers used for keeping state.
  170.  
  171.             Calling this method should ensure that the data on the
  172.             output is put into a clean state, that allows appending
  173.             of new fresh data without having to rescan the whole
  174.             stream to recover state.
  175.  
  176.         '''
  177.         pass
  178.  
  179.     
  180.     def __getattr__(self, name, getattr = getattr):
  181.         ''' Inherit all other methods from the underlying stream.
  182.         '''
  183.         return getattr(self.stream, name)
  184.  
  185.  
  186.  
  187. class StreamReader(Codec):
  188.     
  189.     def __init__(self, stream, errors = 'strict'):
  190.         """ Creates a StreamReader instance.
  191.  
  192.             stream must be a file-like object open for reading
  193.             (binary) data.
  194.  
  195.             The StreamReader may use different error handling
  196.             schemes by providing the errors keyword argument. These
  197.             parameters are predefined:
  198.  
  199.              'strict' - raise a ValueError (or a subclass)
  200.              'ignore' - ignore the character and continue with the next
  201.              'replace'- replace with a suitable replacement character;
  202.  
  203.             The set of allowed parameter values can be extended via
  204.             register_error.
  205.         """
  206.         self.stream = stream
  207.         self.errors = errors
  208.         self.bytebuffer = ''
  209.         self.charbuffer = ''
  210.         self.linebuffer = None
  211.  
  212.     
  213.     def decode(self, input, errors = 'strict'):
  214.         raise NotImplementedError
  215.  
  216.     
  217.     def read(self, size = -1, chars = -1, firstline = False):
  218.         ''' Decodes data from the stream self.stream and returns the
  219.             resulting object.
  220.  
  221.             chars indicates the number of characters to read from the
  222.             stream. read() will never return more than chars
  223.             characters, but it might return less, if there are not enough
  224.             characters available.
  225.  
  226.             size indicates the approximate maximum number of bytes to
  227.             read from the stream for decoding purposes. The decoder
  228.             can modify this setting as appropriate. The default value
  229.             -1 indicates to read and decode as much as possible.  size
  230.             is intended to prevent having to decode huge files in one
  231.             step.
  232.  
  233.             If firstline is true, and a UnicodeDecodeError happens
  234.             after the first line terminator in the input only the first line
  235.             will be returned, the rest of the input will be kept until the
  236.             next call to read().
  237.  
  238.             The method should use a greedy read strategy meaning that
  239.             it should read as much data as is allowed within the
  240.             definition of the encoding and the given size, e.g.  if
  241.             optional encoding endings or state markers are available
  242.             on the stream, these should be read too.
  243.         '''
  244.         if self.linebuffer:
  245.             self.charbuffer = ''.join(self.linebuffer)
  246.             self.linebuffer = None
  247.         
  248.         while True:
  249.             if chars < 0:
  250.                 if self.charbuffer:
  251.                     break
  252.                 
  253.             elif len(self.charbuffer) >= chars:
  254.                 break
  255.             
  256.             if size < 0:
  257.                 newdata = self.stream.read()
  258.             else:
  259.                 newdata = self.stream.read(size)
  260.             data = self.bytebuffer + newdata
  261.             
  262.             try:
  263.                 (newchars, decodedbytes) = self.decode(data, self.errors)
  264.             except UnicodeDecodeError:
  265.                 exc = None
  266.                 if firstline:
  267.                     (newchars, decodedbytes) = self.decode(data[:exc.start], self.errors)
  268.                     lines = newchars.splitlines(True)
  269.                     if len(lines) <= 1:
  270.                         raise 
  271.                     
  272.                 else:
  273.                     raise 
  274.             except:
  275.                 firstline
  276.  
  277.             self.bytebuffer = data[decodedbytes:]
  278.             self.charbuffer += newchars
  279.             if not newdata:
  280.                 break
  281.                 continue
  282.             self
  283.         if chars < 0:
  284.             result = self.charbuffer
  285.             self.charbuffer = ''
  286.         else:
  287.             result = self.charbuffer[:chars]
  288.             self.charbuffer = self.charbuffer[chars:]
  289.         return result
  290.  
  291.     
  292.     def readline(self, size = None, keepends = True):
  293.         ''' Read one line from the input stream and return the
  294.             decoded data.
  295.  
  296.             size, if given, is passed as size argument to the
  297.             read() method.
  298.  
  299.         '''
  300.         if self.linebuffer:
  301.             line = self.linebuffer[0]
  302.             del self.linebuffer[0]
  303.             if len(self.linebuffer) == 1:
  304.                 self.charbuffer = self.linebuffer[0]
  305.                 self.linebuffer = None
  306.             
  307.             if not keepends:
  308.                 line = line.splitlines(False)[0]
  309.             
  310.             return line
  311.         
  312.         if not size:
  313.             pass
  314.         readsize = 72
  315.         line = ''
  316.         while True:
  317.             data = self.read(readsize, firstline = True)
  318.             if data:
  319.                 if data.endswith('\r'):
  320.                     data += self.read(size = 1, chars = 1)
  321.                 
  322.             
  323.             line += data
  324.             lines = line.splitlines(True)
  325.             if lines:
  326.                 if len(lines) > 1:
  327.                     line = lines[0]
  328.                     del lines[0]
  329.                     if len(lines) > 1:
  330.                         lines[-1] += self.charbuffer
  331.                         self.linebuffer = lines
  332.                         self.charbuffer = None
  333.                     else:
  334.                         self.charbuffer = lines[0] + self.charbuffer
  335.                     if not keepends:
  336.                         line = line.splitlines(False)[0]
  337.                     
  338.                     break
  339.                 
  340.                 line0withend = lines[0]
  341.                 line0withoutend = lines[0].splitlines(False)[0]
  342.                 if line0withend != line0withoutend:
  343.                     self.charbuffer = ''.join(lines[1:]) + self.charbuffer
  344.                     if keepends:
  345.                         line = line0withend
  346.                     else:
  347.                         line = line0withoutend
  348.                     break
  349.                 
  350.             
  351.             if not data or size is not None:
  352.                 if line and not keepends:
  353.                     line = line.splitlines(False)[0]
  354.                 
  355.                 break
  356.             
  357.             if readsize < 8000:
  358.                 readsize *= 2
  359.                 continue
  360.         return line
  361.  
  362.     
  363.     def readlines(self, sizehint = None, keepends = True):
  364.         """ Read all lines available on the input stream
  365.             and return them as list of lines.
  366.  
  367.             Line breaks are implemented using the codec's decoder
  368.             method and are included in the list entries.
  369.  
  370.             sizehint, if given, is ignored since there is no efficient
  371.             way to finding the true end-of-line.
  372.  
  373.         """
  374.         data = self.read()
  375.         return data.splitlines(keepends)
  376.  
  377.     
  378.     def reset(self):
  379.         ''' Resets the codec buffers used for keeping state.
  380.  
  381.             Note that no stream repositioning should take place.
  382.             This method is primarily intended to be able to recover
  383.             from decoding errors.
  384.  
  385.         '''
  386.         self.bytebuffer = ''
  387.         self.charbuffer = u''
  388.         self.linebuffer = None
  389.  
  390.     
  391.     def seek(self, offset, whence = 0):
  392.         """ Set the input stream's current position.
  393.  
  394.             Resets the codec buffers used for keeping state.
  395.         """
  396.         self.reset()
  397.         self.stream.seek(offset, whence)
  398.  
  399.     
  400.     def next(self):
  401.         ''' Return the next decoded line from the input stream.'''
  402.         line = self.readline()
  403.         if line:
  404.             return line
  405.         
  406.         raise StopIteration
  407.  
  408.     
  409.     def __iter__(self):
  410.         return self
  411.  
  412.     
  413.     def __getattr__(self, name, getattr = getattr):
  414.         ''' Inherit all other methods from the underlying stream.
  415.         '''
  416.         return getattr(self.stream, name)
  417.  
  418.  
  419.  
  420. class StreamReaderWriter:
  421.     ''' StreamReaderWriter instances allow wrapping streams which
  422.         work in both read and write modes.
  423.  
  424.         The design is such that one can use the factory functions
  425.         returned by the codec.lookup() function to construct the
  426.         instance.
  427.  
  428.     '''
  429.     encoding = 'unknown'
  430.     
  431.     def __init__(self, stream, Reader, Writer, errors = 'strict'):
  432.         ''' Creates a StreamReaderWriter instance.
  433.  
  434.             stream must be a Stream-like object.
  435.  
  436.             Reader, Writer must be factory functions or classes
  437.             providing the StreamReader, StreamWriter interface resp.
  438.  
  439.             Error handling is done in the same way as defined for the
  440.             StreamWriter/Readers.
  441.  
  442.         '''
  443.         self.stream = stream
  444.         self.reader = Reader(stream, errors)
  445.         self.writer = Writer(stream, errors)
  446.         self.errors = errors
  447.  
  448.     
  449.     def read(self, size = -1):
  450.         return self.reader.read(size)
  451.  
  452.     
  453.     def readline(self, size = None):
  454.         return self.reader.readline(size)
  455.  
  456.     
  457.     def readlines(self, sizehint = None):
  458.         return self.reader.readlines(sizehint)
  459.  
  460.     
  461.     def next(self):
  462.         ''' Return the next decoded line from the input stream.'''
  463.         return self.reader.next()
  464.  
  465.     
  466.     def __iter__(self):
  467.         return self
  468.  
  469.     
  470.     def write(self, data):
  471.         return self.writer.write(data)
  472.  
  473.     
  474.     def writelines(self, list):
  475.         return self.writer.writelines(list)
  476.  
  477.     
  478.     def reset(self):
  479.         self.reader.reset()
  480.         self.writer.reset()
  481.  
  482.     
  483.     def __getattr__(self, name, getattr = getattr):
  484.         ''' Inherit all other methods from the underlying stream.
  485.         '''
  486.         return getattr(self.stream, name)
  487.  
  488.  
  489.  
  490. class StreamRecoder:
  491.     ''' StreamRecoder instances provide a frontend - backend
  492.         view of encoding data.
  493.  
  494.         They use the complete set of APIs returned by the
  495.         codecs.lookup() function to implement their task.
  496.  
  497.         Data written to the stream is first decoded into an
  498.         intermediate format (which is dependent on the given codec
  499.         combination) and then written to the stream using an instance
  500.         of the provided Writer class.
  501.  
  502.         In the other direction, data is read from the stream using a
  503.         Reader instance and then return encoded data to the caller.
  504.  
  505.     '''
  506.     data_encoding = 'unknown'
  507.     file_encoding = 'unknown'
  508.     
  509.     def __init__(self, stream, encode, decode, Reader, Writer, errors = 'strict'):
  510.         ''' Creates a StreamRecoder instance which implements a two-way
  511.             conversion: encode and decode work on the frontend (the
  512.             input to .read() and output of .write()) while
  513.             Reader and Writer work on the backend (reading and
  514.             writing to the stream).
  515.  
  516.             You can use these objects to do transparent direct
  517.             recodings from e.g. latin-1 to utf-8 and back.
  518.  
  519.             stream must be a file-like object.
  520.  
  521.             encode, decode must adhere to the Codec interface, Reader,
  522.             Writer must be factory functions or classes providing the
  523.             StreamReader, StreamWriter interface resp.
  524.  
  525.             encode and decode are needed for the frontend translation,
  526.             Reader and Writer for the backend translation. Unicode is
  527.             used as intermediate encoding.
  528.  
  529.             Error handling is done in the same way as defined for the
  530.             StreamWriter/Readers.
  531.  
  532.         '''
  533.         self.stream = stream
  534.         self.encode = encode
  535.         self.decode = decode
  536.         self.reader = Reader(stream, errors)
  537.         self.writer = Writer(stream, errors)
  538.         self.errors = errors
  539.  
  540.     
  541.     def read(self, size = -1):
  542.         data = self.reader.read(size)
  543.         (data, bytesencoded) = self.encode(data, self.errors)
  544.         return data
  545.  
  546.     
  547.     def readline(self, size = None):
  548.         if size is None:
  549.             data = self.reader.readline()
  550.         else:
  551.             data = self.reader.readline(size)
  552.         (data, bytesencoded) = self.encode(data, self.errors)
  553.         return data
  554.  
  555.     
  556.     def readlines(self, sizehint = None):
  557.         data = self.reader.read()
  558.         (data, bytesencoded) = self.encode(data, self.errors)
  559.         return data.splitlines(1)
  560.  
  561.     
  562.     def next(self):
  563.         ''' Return the next decoded line from the input stream.'''
  564.         data = self.reader.next()
  565.         (data, bytesencoded) = self.encode(data, self.errors)
  566.         return data
  567.  
  568.     
  569.     def __iter__(self):
  570.         return self
  571.  
  572.     
  573.     def write(self, data):
  574.         (data, bytesdecoded) = self.decode(data, self.errors)
  575.         return self.writer.write(data)
  576.  
  577.     
  578.     def writelines(self, list):
  579.         data = ''.join(list)
  580.         (data, bytesdecoded) = self.decode(data, self.errors)
  581.         return self.writer.write(data)
  582.  
  583.     
  584.     def reset(self):
  585.         self.reader.reset()
  586.         self.writer.reset()
  587.  
  588.     
  589.     def __getattr__(self, name, getattr = getattr):
  590.         ''' Inherit all other methods from the underlying stream.
  591.         '''
  592.         return getattr(self.stream, name)
  593.  
  594.  
  595.  
  596. def open(filename, mode = 'rb', encoding = None, errors = 'strict', buffering = 1):
  597.     """ Open an encoded file using the given mode and return
  598.         a wrapped version providing transparent encoding/decoding.
  599.  
  600.         Note: The wrapped version will only accept the object format
  601.         defined by the codecs, i.e. Unicode objects for most builtin
  602.         codecs. Output is also codec dependent and will usually by
  603.         Unicode as well.
  604.  
  605.         Files are always opened in binary mode, even if no binary mode
  606.         was specified. This is done to avoid data loss due to encodings
  607.         using 8-bit values. The default file mode is 'rb' meaning to
  608.         open the file in binary read mode.
  609.  
  610.         encoding specifies the encoding which is to be used for the
  611.         file.
  612.  
  613.         errors may be given to define the error handling. It defaults
  614.         to 'strict' which causes ValueErrors to be raised in case an
  615.         encoding error occurs.
  616.  
  617.         buffering has the same meaning as for the builtin open() API.
  618.         It defaults to line buffered.
  619.  
  620.         The returned wrapped file object provides an extra attribute
  621.         .encoding which allows querying the used encoding. This
  622.         attribute is only available if an encoding was specified as
  623.         parameter.
  624.  
  625.     """
  626.     if encoding is not None and 'b' not in mode:
  627.         mode = mode + 'b'
  628.     
  629.     file = __builtin__.open(filename, mode, buffering)
  630.     if encoding is None:
  631.         return file
  632.     
  633.     (e, d, sr, sw) = lookup(encoding)
  634.     srw = StreamReaderWriter(file, sr, sw, errors)
  635.     srw.encoding = encoding
  636.     return srw
  637.  
  638.  
  639. def EncodedFile(file, data_encoding, file_encoding = None, errors = 'strict'):
  640.     """ Return a wrapped version of file which provides transparent
  641.         encoding translation.
  642.  
  643.         Strings written to the wrapped file are interpreted according
  644.         to the given data_encoding and then written to the original
  645.         file as string using file_encoding. The intermediate encoding
  646.         will usually be Unicode but depends on the specified codecs.
  647.  
  648.         Strings are read from the file using file_encoding and then
  649.         passed back to the caller as string using data_encoding.
  650.  
  651.         If file_encoding is not given, it defaults to data_encoding.
  652.  
  653.         errors may be given to define the error handling. It defaults
  654.         to 'strict' which causes ValueErrors to be raised in case an
  655.         encoding error occurs.
  656.  
  657.         The returned wrapped file object provides two extra attributes
  658.         .data_encoding and .file_encoding which reflect the given
  659.         parameters of the same name. The attributes can be used for
  660.         introspection by Python programs.
  661.  
  662.     """
  663.     if file_encoding is None:
  664.         file_encoding = data_encoding
  665.     
  666.     (encode, decode) = lookup(data_encoding)[:2]
  667.     (Reader, Writer) = lookup(file_encoding)[2:]
  668.     sr = StreamRecoder(file, encode, decode, Reader, Writer, errors)
  669.     sr.data_encoding = data_encoding
  670.     sr.file_encoding = file_encoding
  671.     return sr
  672.  
  673.  
  674. def getencoder(encoding):
  675.     ''' Lookup up the codec for the given encoding and return
  676.         its encoder function.
  677.  
  678.         Raises a LookupError in case the encoding cannot be found.
  679.  
  680.     '''
  681.     return lookup(encoding)[0]
  682.  
  683.  
  684. def getdecoder(encoding):
  685.     ''' Lookup up the codec for the given encoding and return
  686.         its decoder function.
  687.  
  688.         Raises a LookupError in case the encoding cannot be found.
  689.  
  690.     '''
  691.     return lookup(encoding)[1]
  692.  
  693.  
  694. def getreader(encoding):
  695.     ''' Lookup up the codec for the given encoding and return
  696.         its StreamReader class or factory function.
  697.  
  698.         Raises a LookupError in case the encoding cannot be found.
  699.  
  700.     '''
  701.     return lookup(encoding)[2]
  702.  
  703.  
  704. def getwriter(encoding):
  705.     ''' Lookup up the codec for the given encoding and return
  706.         its StreamWriter class or factory function.
  707.  
  708.         Raises a LookupError in case the encoding cannot be found.
  709.  
  710.     '''
  711.     return lookup(encoding)[3]
  712.  
  713.  
  714. def make_identity_dict(rng):
  715.     ''' make_identity_dict(rng) -> dict
  716.  
  717.         Return a dictionary where elements of the rng sequence are
  718.         mapped to themselves.
  719.  
  720.     '''
  721.     res = { }
  722.     for i in rng:
  723.         res[i] = i
  724.     
  725.     return res
  726.  
  727.  
  728. def make_encoding_map(decoding_map):
  729.     ''' Creates an encoding map from a decoding map.
  730.  
  731.         If a target mapping in the decoding map occurs multiple
  732.         times, then that target is mapped to None (undefined mapping),
  733.         causing an exception when encountered by the charmap codec
  734.         during translation.
  735.  
  736.         One example where this happens is cp875.py which decodes
  737.         multiple character to \\u001a.
  738.  
  739.     '''
  740.     m = { }
  741.     for k, v in decoding_map.items():
  742.         if v not in m:
  743.             m[v] = k
  744.             continue
  745.         m[v] = None
  746.     
  747.     return m
  748.  
  749.  
  750. try:
  751.     strict_errors = lookup_error('strict')
  752.     ignore_errors = lookup_error('ignore')
  753.     replace_errors = lookup_error('replace')
  754.     xmlcharrefreplace_errors = lookup_error('xmlcharrefreplace')
  755.     backslashreplace_errors = lookup_error('backslashreplace')
  756. except LookupError:
  757.     strict_errors = None
  758.     ignore_errors = None
  759.     replace_errors = None
  760.     xmlcharrefreplace_errors = None
  761.     backslashreplace_errors = None
  762.  
  763. _false = 0
  764. if _false:
  765.     import encodings
  766.  
  767. if __name__ == '__main__':
  768.     sys.stdout = EncodedFile(sys.stdout, 'latin-1', 'utf-8')
  769.     sys.stdin = EncodedFile(sys.stdin, 'utf-8', 'latin-1')
  770.  
  771.